home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000227_news@newsmaster….columbia.edu _Tue Aug 26 10:38:11 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA18510
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 26 Aug 1997 10:38:10 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA21494
  7.     for kermit.misc@watsun; Tue, 26 Aug 1997 10:38:10 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.unix.questions,comp.unix.admin,comp.unix.misc,comp.unix.ultrix,comp.unix.shell
  11. Subject: Re: Do not get connected at 33.6K
  12. Date: 26 Aug 1997 14:38:06 GMT
  13. Organization: Columbia University
  14. Lines: 45
  15. Message-ID: <5tupoe$gra$1@apakabar.cc.columbia.edu>
  16. References: <5tsn5b$o9q@newslink.runet.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7543 comp.unix.questions:115996 comp.unix.admin:70158 comp.unix.misc:35249 comp.unix.ultrix:31791 comp.unix.shell:54221
  19.  
  20. In article <5tsn5b$o9q@newslink.runet.edu>,
  21. I l y a <ibeloozePLEASE_REMOVE_THIS_TO_REPLY@runet.edu> wrote:
  22. :   I use Ultrix 4.4 and an old version of kermit.
  23. :
  24. There is no need to run an old version of Kermit.  The very latest versions
  25. work on Ultrix 4.4 and every other UNIX version:
  26.  
  27.   http://www.columbia.edu/kermit/ck60.html
  28.  
  29. C-Kermit 6.0 includes much better support for high-speed modems than previous
  30. versions.
  31.  
  32. :   I just got a 33.6K
  33. :   Practical Peripherals modem but I can not get connected at that
  34. :   speed. Only 19600. This is my .kermrc file:
  35. :   
  36. :   set line /dev/tty00
  37. :   set speed 33600
  38. :   ...
  39. :
  40. You need a "set modem type ppi" command before your "set line" command.
  41. This causes C-Kermit 6.0 to adjust its many of its communications settings
  42. to the modem -- flow control, speed buffering, etc, and of course, also
  43. allows C-Kermit to open the device even though it is not yet asserting CD.
  44. (In Ultrix this might not be an issue, but it is in System V and POSIX
  45. based UNIX versions).
  46.  
  47. :   The error I am getting is 
  48. :   
  49. :   ?No keywords match - 33600
  50. :     
  51. :   Why is this happening and what can I do about it? What is the right speed
  52. :   to specify in that file?  Also, all of the modems they have are 33.6K.
  53. :   
  54. You can only tell C-Kermit to set speeds that are supported by the underlying
  55. operating system.  33600 is not such a speed.  Use 38400 or 57600 or 76800 or
  56. 115200.  Read the "Using C-Kermit" manual about speed buffering, flow control,
  57. error correction, and compression -- the difference between modulation speed
  58. and interface speed, and their reconciliation, is a fundamental aspect of
  59. modern modem communications, and is covered in depth in Appendix II of the
  60. manual:
  61.  
  62.   http://www.columbia.edu/kermit/ck60manual.html
  63.  
  64. - Frank